home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 005 / dedmatic.arc / FETCH.BAT < prev    next >
DOS Batch File  |  1985-05-24  |  819b  |  23 lines

  1. echo off
  2. echo Warning! Fetch will allow you to copy records more than once.
  3. echo Read the instructions in the manual carefully before using.
  4. echo To escape hit "Ctrl-C".
  5. echo Note: Records will be copied FROM drive A and TO the default drive (B or C).
  6. pause Strike any key when ready.....
  7. if exist a:d.l goto :normal
  8. echo There are no Deduct-a-Matic records on the diskette in Drive A
  9. goto :exit
  10. :normal
  11. if not exist d.l copy a:d.l dtemp.l
  12. if exist d.l copy a:d.l+d.l dtemp.l
  13. if exist dtemp.l goto :cont
  14. echo There is not enough room to copy the records.
  15. echo Please try another diskette with more room.
  16. goto :exit
  17. :cont
  18. copy dtemp.l d.l
  19. echo The records from the diskette in Drive A have been copied.
  20. echo To fetch records from another diskette, hit F3 then hit return when ready.
  21. :exit
  22. echo on
  23.